Introduction and Motivation

In a private institution such as Emory University, there is a large diversity of economic classes amongst students. Some students participate in federal work-study or other part-time jobs in order to contribute to the financial burdens of a higher education institution whereas others’ tuition is paid for by a third-party, most commonly that student’s parents. A study conducted by Laura Hamilton, a sociology professor at University of California, Merced, suggests that parental investments create a disincentive for student achievement. In other words, parental aid decreases students’ GPA as students with parental funding often is associated with lower academic efforts.

As of 2020, tuition alone for Emory University is $53,804 with around 56 percent of students receiving some sort of financial aid (“Types of Financial Aid”). Assuming a student takes 30 credits for the entire school year, each credit is worth around $1793 and thus a 3-credit course is worth around $5380. Even with such high costs for classes however, many college students opt to skip classes frequently. According to the most recent survey by Class120 in 2015, the average college student skips 240 classes by the time he or she graduates. For students at private schools, it is $24,960 over the course of 4 years.

Shown above, about one fourth of the student body skips class at least once a week, according to a Herald poll conducted March 3-4 (Dee, 2014).

Shown above, about one fourth of the student body skips class at least once a week, according to a Herald poll conducted March 3-4 (Dee, 2014).

I have always wondered if there exists such correlation between the number of classes a student would skip and if he or she is paying for part of their tuition. There is correlation suggesting that class attendance significantly improves student performance in terms of exam scores from a study by the Economics Department at UC Santa Cruz. Thus, in my project, I seek to analyze if there exists a correlation between whether if a student contributes financially to his/her tuition is dependent on financial aid, which would affect their tendency to skip class, and consequently their overall GPA.

Hypothesis

I believe that students who are on financial aid are more likely to pay a portion of their tuition. There exists a positive correlation between class attendance and overall average GPA. Students who contribute to their tuition and students on financial aid would skip less classes as opposed to those who do not and therefore have higher GPAs.

The Data Set

Data Gathering

The data used for this study was obtained from a class survey of 108 students. The questions in the survey that will be used are as follows:

• What is your GPA?

• Are you helping to pay for at least a portion of your Emory tuition?

• Are you on financial aid?

• What proportion of classes do you attend?

Data Cleaning

From the dataset, 4 new columns or variables were created. 2 categorical and 2 numerical.

NewGPA (Numerical)

GPA from the dataset shows the average GPA of each student in college. Answers provided should be rounded to two decimals. Data was modified to be numerical.

Tuition (Categorical)

Tuition (q194) examines whether a student is helping to pay for a portion of his/her tuition. Answers are yes or no. Data was modified to convert the class from character to factor.

Aid (Categorical)

Financial aid (q96) examines whether a student is on financial aid or not. Answers are yes or no. Data was modified to change class from character to factor.

Classes (Numerical)

Class attendance (q121) tells the proportion of class attended by credit on average for each student. Answers were reported by credit: (i.e. I miss one class of chemistry (1.5 credits) and take 20 credits. I would report 18.5/20). Data was modified to change all answers to a proportion between 0 and 1. For more details view code below.

Graphs

Tuition & Aid

First, let us look at tuition contribution status and financial aid status of all students.

Figure 1: Representation of students who are not on financial aid to see if they are paying for a portion of their tuition.

Figure 2: Representation of students who are on financial aid to see if they are paying for a portion of their tuition.

Figure 3: Representation of entire student population based on whether or not they are on financial aid and if they are paying for a portion of their tuition.

The table below summarizes the percentages of students in 4 categories concerning financial aid and contribution to their own tuition

Table 1:

Groups of Students Percentage
No Aid/ Not Pay Tuition 63.21
No Aid/ Pay Tuition 11.32
Aid/ Not Pay Tuition 15.09
Aid/ Pay Tuition 10.38

GPA & Attendance

Then, let us seek to investigate if higher class attendance equates to higher average GPA.

Figure 4: A scatter plot is used to show the correlation between attendance for classes and GPA.

Attendance & Tuition & Aid

Lastly, I will look at the class attendance for students based on tuition contribution and financial aid status.

Figure 7: A histogram is used to compare the average class attendance between students who contributes financially to their tuition and those who do not.

Figure 8: A histogram is used to compare the average class attendance between students who are on financial aid and those who are not.

Analysis/Inference

The tables below show a summary of all students’ class attendance and GPA based on tuition contribution status and financial aid status.

Table 2:

Tuition Contribution Status Average Proportion of Class Attended Average GPA
No 0.918 3.577
Yes 0.947 3.644

Table 3:

Financial Aid Status Average Proportion of Class Attended Average GPA
No 0.922 3.571
Yes 0.926 3.648

In order to test for statistical significance, I will look into the relationships of these variables in closer detail in the tabbed sections below.

Tuition and Aid

Null Hypothesis: No correlation between a student’s tuition contribution status and financial aid status.

In order to test the correlation between a student’s tuition contribution status and financial aid status, we will run the chi-squared test and the resulting p-value here can be seen as a measure of correlation between these two variables.

##   X-squared             
## 7.732182322 0.005424515
## X-squared 
## 0.2700835

A p-value of 0.005 and Crammer’s V of 0.27 was obtained. Since is p-value is small enough, we can reject the null hypothesis of independence and conclude that tuition contribution status is depedent on financial aid status.

GPA & Attendance

Null Hypothesis: No correlation between a student’s class attendance and GPA.

In order to test if higher class attandence is associated with higher GPA, correlation is calculated.

## 
##  Pearson's product-moment correlation
## 
## data:  Prodata$NewGPA and Prodata$Classes
## t = 4.1689, df = 105, p-value = 6.311e-05
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.2013975 0.5288658
## sample estimates:
##       cor 
## 0.3768464

The correlation for GPA and class attendance is 0.37, which indicates medium positive correlation. Suggesting that higher class attendance is relatively correlated to higher GPA. Additionally, the p-value is less than 0.05, thus we can reject the null hypothesis and conclude GPA is dependent on class attendance.

GPA & Tuition & Aid

Null Hypothesis : The difference in mean GPA by tuition and aid is 0.

Run a t.test to test for:

  1. Differences in the mean GPA between students who contributed towards their tuition and those who do not.
## 
##  Welch Two Sample t-test
## 
## data:  NewGPA by Tuition
## t = -0.83064, df = 39.032, p-value = 0.4112
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  -0.2299292  0.0960565
## sample estimates:
##  mean in group No mean in group Yes 
##          3.576585          3.643522
  1. Differences in the mean GPA between students who receive financial aid and those who do not.
## 
##  Welch Two Sample t-test
## 
## data:  NewGPA by Aid
## t = -0.99359, df = 47.951, p-value = 0.3254
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  -0.23264705  0.07876279
## sample estimates:
##  mean in group No mean in group Yes 
##          3.570688          3.647630

Results for both show a p-value greater than 0.05 and |t-value| less than 2 , thus we fail to reject the null hypothesis that average GPA does not differ between students based on tuition contribution status and financial aid status.

Attendance & Tuition & Aid

Null Hypothesis : The difference in mean attendance by tuition and aid is 0.

Run a t.test to test for:

  1. Differences in the mean proportion of class attended between students who contributed towards their tuition and those who do not.
## 
##  Welch Two Sample t-test
## 
## data:  Classes by Tuition
## t = -1.0671, df = 74.869, p-value = 0.2893
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  -0.07879637  0.02382518
## sample estimates:
##  mean in group No mean in group Yes 
##         0.9190361         0.9465217
  1. Differences in the mean proportion of class attended between students who receive financial aid and those who do not.
## 
##  Welch Two Sample t-test
## 
## data:  Classes by Aid
## t = -0.062537, df = 47.918, p-value = 0.9504
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  -0.06957941  0.06538188
## sample estimates:
##  mean in group No mean in group Yes 
##         0.9234568         0.9255556

Results for both show a p-value greater than 0.05 and |t-value| less than 2, thus we fail to reject the null hypothesis that class attendance does not differ between students based on tuition contribution status and finanical aid status.

Conclusions

Through this analysis, it is shown that first, a student’s tuition contribution status is highly dependent on if a student is receiving financial aid. 40.74% of financial aid students are paying for a portion of their tuition whereas only 15.19% of non-financial aid do the same. This can be attributed to perhaps financial aid students coming from a lower income level family and needing to work to have more flexibility in spending.

It is also shown that, as hypothesized, increasing class attendance is correlated to higher GPA. Although the correlation is not strong within the data we have collected, it is nevertheless positive and perhaps if the population sample were to be expanded to a more diverse group of students, the correlation would increase.

Although as seen from Table 2 and 3, students who contribute to their tuition has a higher class attendance and GPA (0.947, 3.644) than those who do not (0.918, 3.577). However, the difference is not significant in the population sample we used. Likewise, students who are on financial aid also has a higher class attendance and GPA (0.926, 3.648) than those who do not (0.922, 3.571) even though the difference is once again, insignificant. The inability to reject the null hypothesis can be attributed to either the null hypothesis is true or insufficient sampling in our data. Thus, more analysis is needed to fully conclude the effect of students’ financial contribution to education on class attendance and overall GPA.

Future Directions

In our dataset, there are 63 percent of students who are not on financial aid and did not contribute to their tuition costs. This shows a potential bias in the data which could affect results. In order to fully conclude if school performance is associated with tuition contribution, the following can be improved in the future:

  1. Analyze the results based on economic income brackets for each student as well.

  2. Look into the actual amount of money students are contributing to their tuition.

  3. Sample a more diverse population with students from different schools and majors to have a sample with equal distribution of students in terms of financial aid status and tuition contribution status.

Works Cited

Dee, Gabrielle. “Busy Schedules, Boring Lectures Drive Students to Skip Classes.” Brown Daily Herald, 22 Apr. 2014, www.browndailyherald.com/2014/04/17/busy-schedules-boring-lectures-drive-students-skip-classes/.

Dignan, Sara. “The Cost of Skipping Class, by the Numbers.” USA Today, Gannett Satellite Information Network, 26 Feb. 2016, www.usatoday.com/story/college/2016/02/26/the-cost-of-skipping-class-by-the-numbers/37413317/.

Hamilton, Laura T. “More Is More or More Is Less? Parental Financial Investments during College.” American Sociological Review, vol. 78, no. 1, Feb. 2013, pp. 70–95, doi:10.1177/0003122412472680.

“Types of Financial Aid: Emory University: Atlanta GA.” Emory University | Atlanta GA, apply.emory.edu/financial-aid/types-of-aid/index.html.